diff --git a/libcpychecker_html/foo.html b/libcpychecker_html/foo.html new file mode 100644 index 00000000..6a8ea822 --- /dev/null +++ b/libcpychecker_html/foo.html @@ -0,0 +1,1185 @@ + +_mysql.c -- GCC Python Plugin
  1. ob_refcnt of '*module' is 1 too high

    Report

    1
    DL_EXPORT(void) +
    init_mysql(void) +
    #endif +
    { +
    PyObject *dict, *module, *emod, *edict; +
    +
    utf8conn = mysql_init(NULL); +
    utf8conn->charset = &my_charset_utf8mb4_unicode_ci; +
    +
    #ifdef IS_PY3K +
    module = PyModule_Create(&_mysqlmodule); +
    if (!module) return module; /* this really should never happen */ +
    #else +
    module = Py_InitModule4("_mysql", _mysql_methods, _mysql___doc__, +
    (PyObject *)NULL, PYTHON_API_VERSION); +
    if (!module) return; /* this really should never happen */ +
    #endif +
    #ifdef IS_PY3K +
    Py_TYPE(&_mysql_ConnectionObject_Type) = &PyType_Type; +
    Py_TYPE(&_mysql_ResultObject_Type) = &PyType_Type; +
    #else +
    _mysql_ConnectionObject_Type.ob_type = &PyType_Type; +
    _mysql_ResultObject_Type.ob_type = &PyType_Type; +
    #endif +
    #if PY_VERSION_HEX >= 0x02020000 +
    _mysql_ConnectionObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ResultObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ConnectionObject_Type.tp_new = PyType_GenericNew; +
    _mysql_ResultObject_Type.tp_new = PyType_GenericNew; +
    #ifndef IS_PY3K +
    _mysql_ConnectionObject_Type.tp_free = _PyObject_GC_Del; +
    _mysql_ResultObject_Type.tp_free = _PyObject_GC_Del; +
    #endif +
    #endif +
    +
    if (!(dict = PyModule_GetDict(module))) goto error; +
    if (PyDict_SetItemString(dict, "version_info", +
    PyRun_String(QUOTE(version_info), Py_eval_input, +
    dict, dict))) +
    goto error; +
    if (PyDict_SetItemString(dict, "__version__", +
    PyUnicode_FromString(QUOTE(__version__)))) +
    goto error; +
    if (PyDict_SetItemString(dict, "connection", +
    (PyObject *)&_mysql_ConnectionObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ConnectionObject_Type); +
    if (PyDict_SetItemString(dict, "result", +
    (PyObject *)&_mysql_ResultObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ResultObject_Type); +
    if (!(emod = PyImport_ImportModule("_mysql_exceptions"))) { +
    PyErr_Print(); +
    goto error; +
    } +
    if (!(edict = PyModule_GetDict(emod))) goto error; +
    if (!(_mysql_MySQLError = +
    _mysql_NewException(dict, edict, "MySQLError"))) +
    goto error; +
    if (!(_mysql_Warning = +
    _mysql_NewException(dict, edict, "Warning"))) +
    goto error; +
    if (!(_mysql_Error = +
    _mysql_NewException(dict, edict, "Error"))) +
    goto error; +
    if (!(_mysql_InterfaceError = +
    _mysql_NewException(dict, edict, "InterfaceError"))) +
    goto error; +
    if (!(_mysql_DatabaseError = +
    _mysql_NewException(dict, edict, "DatabaseError"))) +
    goto error; +
    if (!(_mysql_DataError = +
    _mysql_NewException(dict, edict, "DataError"))) +
    goto error; +
    if (!(_mysql_OperationalError = +
    _mysql_NewException(dict, edict, "OperationalError"))) +
    goto error; +
    if (!(_mysql_IntegrityError = +
    _mysql_NewException(dict, edict, "IntegrityError"))) +
    goto error; +
    if (!(_mysql_InternalError = +
    _mysql_NewException(dict, edict, "InternalError"))) +
    goto error; +
    if (!(_mysql_ProgrammingError = +
    _mysql_NewException(dict, edict, "ProgrammingError"))) +
    goto error; +
    if (!(_mysql_NotSupportedError = +
    _mysql_NewException(dict, edict, "NotSupportedError"))) +
    goto error; +
    if (!(_mysql_NULL = PyBytes_FromString("NULL"))) +
    goto error; +
    if (PyDict_SetItemString(dict, "NULL", _mysql_NULL)) goto error; +
    error: +
    if (emod) Py_DECREF(emod); +
    if (PyErr_Occurred()) { +
    PyErr_SetString(PyExc_ImportError, +
    "_mysql: init failed"); +
    if (module) Py_DECREF(module); +
    module = NULL; +
    } +
    #ifdef IS_PY3K +
    return module; +
    #endif +
    } +
    1. when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL

    2. when Py_InitModule4TraceRefs_64() succeeds

      new ref from (unknown) Py_InitModule4TraceRefs_64 allocated at: module = Py_InitModule4("_mysql", _mysql_methods, _mysql___doc__,

    3. taking False path

    4. taking False path

    5. when PyRun_StringFlags() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    6. when PyUnicodeUCS4_FromString() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    7. when PyDict_SetItemString() succeeds

      taking False path

    8. when PyDict_SetItemString() succeeds

      taking False path

    9. when PyImport_ImportModule() succeeds

      taking False path

    10. taking False path

    11. when _mysql_NewException() succeeds

    12. taking False path

    13. when _mysql_NewException() succeeds

    14. taking False path

    15. when _mysql_NewException() succeeds

    16. taking False path

    17. when _mysql_NewException() succeeds

    18. taking False path

    19. when _mysql_NewException() succeeds

    20. taking False path

    21. when _mysql_NewException() succeeds

    22. taking False path

    23. when _mysql_NewException() succeeds

    24. taking False path

    25. when _mysql_NewException() succeeds

    26. taking False path

    27. when _mysql_NewException() succeeds

    28. taking False path

    29. when _mysql_NewException() succeeds

    30. taking False path

    31. when _mysql_NewException() succeeds

    32. taking False path

    33. when PyString_FromString() succeeds

      taking False path

    34. when PyDict_SetItemString() succeeds

      taking False path

    35. taking True path

      when taking True path

      taking False path

    36. PyErr_Occurred()

      taking False path

    37. returning

      was expecting final ob_refcnt to be N + 0 (for some unknown N)

      but final ob_refcnt is N + 1

      found 1 similar trace(s) to this

  2. ob_refcnt of '*_mysql_ConnectionObject_Type.355' is 1 too high

    Report

    2
    DL_EXPORT(void) +
    init_mysql(void) +
    #endif +
    { +
    PyObject *dict, *module, *emod, *edict; +
    +
    utf8conn = mysql_init(NULL); +
    utf8conn->charset = &my_charset_utf8mb4_unicode_ci; +
    +
    #ifdef IS_PY3K +
    module = PyModule_Create(&_mysqlmodule); +
    if (!module) return module; /* this really should never happen */ +
    #else +
    module = Py_InitModule4("_mysql", _mysql_methods, _mysql___doc__, +
    (PyObject *)NULL, PYTHON_API_VERSION); +
    if (!module) return; /* this really should never happen */ +
    #endif +
    #ifdef IS_PY3K +
    Py_TYPE(&_mysql_ConnectionObject_Type) = &PyType_Type; +
    Py_TYPE(&_mysql_ResultObject_Type) = &PyType_Type; +
    #else +
    _mysql_ConnectionObject_Type.ob_type = &PyType_Type; +
    _mysql_ResultObject_Type.ob_type = &PyType_Type; +
    #endif +
    #if PY_VERSION_HEX >= 0x02020000 +
    _mysql_ConnectionObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ResultObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ConnectionObject_Type.tp_new = PyType_GenericNew; +
    _mysql_ResultObject_Type.tp_new = PyType_GenericNew; +
    #ifndef IS_PY3K +
    _mysql_ConnectionObject_Type.tp_free = _PyObject_GC_Del; +
    _mysql_ResultObject_Type.tp_free = _PyObject_GC_Del; +
    #endif +
    #endif +
    +
    if (!(dict = PyModule_GetDict(module))) goto error; +
    if (PyDict_SetItemString(dict, "version_info", +
    PyRun_String(QUOTE(version_info), Py_eval_input, +
    dict, dict))) +
    goto error; +
    if (PyDict_SetItemString(dict, "__version__", +
    PyUnicode_FromString(QUOTE(__version__)))) +
    goto error; +
    if (PyDict_SetItemString(dict, "connection", +
    (PyObject *)&_mysql_ConnectionObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ConnectionObject_Type); +
    if (PyDict_SetItemString(dict, "result", +
    (PyObject *)&_mysql_ResultObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ResultObject_Type); +
    if (!(emod = PyImport_ImportModule("_mysql_exceptions"))) { +
    PyErr_Print(); +
    goto error; +
    } +
    if (!(edict = PyModule_GetDict(emod))) goto error; +
    if (!(_mysql_MySQLError = +
    _mysql_NewException(dict, edict, "MySQLError"))) +
    goto error; +
    if (!(_mysql_Warning = +
    _mysql_NewException(dict, edict, "Warning"))) +
    goto error; +
    if (!(_mysql_Error = +
    _mysql_NewException(dict, edict, "Error"))) +
    goto error; +
    if (!(_mysql_InterfaceError = +
    _mysql_NewException(dict, edict, "InterfaceError"))) +
    goto error; +
    if (!(_mysql_DatabaseError = +
    _mysql_NewException(dict, edict, "DatabaseError"))) +
    goto error; +
    if (!(_mysql_DataError = +
    _mysql_NewException(dict, edict, "DataError"))) +
    goto error; +
    if (!(_mysql_OperationalError = +
    _mysql_NewException(dict, edict, "OperationalError"))) +
    goto error; +
    if (!(_mysql_IntegrityError = +
    _mysql_NewException(dict, edict, "IntegrityError"))) +
    goto error; +
    if (!(_mysql_InternalError = +
    _mysql_NewException(dict, edict, "InternalError"))) +
    goto error; +
    if (!(_mysql_ProgrammingError = +
    _mysql_NewException(dict, edict, "ProgrammingError"))) +
    goto error; +
    if (!(_mysql_NotSupportedError = +
    _mysql_NewException(dict, edict, "NotSupportedError"))) +
    goto error; +
    if (!(_mysql_NULL = PyBytes_FromString("NULL"))) +
    goto error; +
    if (PyDict_SetItemString(dict, "NULL", _mysql_NULL)) goto error; +
    error: +
    if (emod) Py_DECREF(emod); +
    if (PyErr_Occurred()) { +
    PyErr_SetString(PyExc_ImportError, +
    "_mysql: init failed"); +
    if (module) Py_DECREF(module); +
    module = NULL; +
    } +
    #ifdef IS_PY3K +
    return module; +
    #endif +
    } +
    1. when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL

    2. when Py_InitModule4TraceRefs_64() succeeds

    3. taking False path

    4. taking False path

    5. when PyRun_StringFlags() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    6. when PyUnicodeUCS4_FromString() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    7. when PyDict_SetItemString() succeeds

      taking False path

    8. when PyDict_SetItemString() succeeds

      taking False path

    9. when PyImport_ImportModule() succeeds

      taking False path

    10. taking False path

    11. when _mysql_NewException() succeeds

    12. taking False path

    13. when _mysql_NewException() succeeds

    14. taking False path

    15. when _mysql_NewException() succeeds

    16. taking False path

    17. when _mysql_NewException() succeeds

    18. taking False path

    19. when _mysql_NewException() succeeds

    20. taking False path

    21. when _mysql_NewException() succeeds

    22. taking False path

    23. when _mysql_NewException() succeeds

    24. taking False path

    25. when _mysql_NewException() succeeds

    26. taking False path

    27. when _mysql_NewException() succeeds

    28. taking False path

    29. when _mysql_NewException() succeeds

    30. taking False path

    31. when _mysql_NewException() succeeds

    32. taking False path

    33. when PyString_FromString() succeeds

      taking False path

    34. when PyDict_SetItemString() succeeds

      taking False path

    35. taking True path

      when taking True path

      taking False path

    36. PyErr_Occurred()

      taking False path

    37. returning

      was expecting final ob_refcnt to be N + 0 (for some unknown N)

      but final ob_refcnt is N + 1

      found 9 similar trace(s) to this

  3. ob_refcnt of '*_mysql_ResultObject_Type.358' is 1 too high

    Report

    3
    DL_EXPORT(void) +
    init_mysql(void) +
    #endif +
    { +
    PyObject *dict, *module, *emod, *edict; +
    +
    utf8conn = mysql_init(NULL); +
    utf8conn->charset = &my_charset_utf8mb4_unicode_ci; +
    +
    #ifdef IS_PY3K +
    module = PyModule_Create(&_mysqlmodule); +
    if (!module) return module; /* this really should never happen */ +
    #else +
    module = Py_InitModule4("_mysql", _mysql_methods, _mysql___doc__, +
    (PyObject *)NULL, PYTHON_API_VERSION); +
    if (!module) return; /* this really should never happen */ +
    #endif +
    #ifdef IS_PY3K +
    Py_TYPE(&_mysql_ConnectionObject_Type) = &PyType_Type; +
    Py_TYPE(&_mysql_ResultObject_Type) = &PyType_Type; +
    #else +
    _mysql_ConnectionObject_Type.ob_type = &PyType_Type; +
    _mysql_ResultObject_Type.ob_type = &PyType_Type; +
    #endif +
    #if PY_VERSION_HEX >= 0x02020000 +
    _mysql_ConnectionObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ResultObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ConnectionObject_Type.tp_new = PyType_GenericNew; +
    _mysql_ResultObject_Type.tp_new = PyType_GenericNew; +
    #ifndef IS_PY3K +
    _mysql_ConnectionObject_Type.tp_free = _PyObject_GC_Del; +
    _mysql_ResultObject_Type.tp_free = _PyObject_GC_Del; +
    #endif +
    #endif +
    +
    if (!(dict = PyModule_GetDict(module))) goto error; +
    if (PyDict_SetItemString(dict, "version_info", +
    PyRun_String(QUOTE(version_info), Py_eval_input, +
    dict, dict))) +
    goto error; +
    if (PyDict_SetItemString(dict, "__version__", +
    PyUnicode_FromString(QUOTE(__version__)))) +
    goto error; +
    if (PyDict_SetItemString(dict, "connection", +
    (PyObject *)&_mysql_ConnectionObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ConnectionObject_Type); +
    if (PyDict_SetItemString(dict, "result", +
    (PyObject *)&_mysql_ResultObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ResultObject_Type); +
    if (!(emod = PyImport_ImportModule("_mysql_exceptions"))) { +
    PyErr_Print(); +
    goto error; +
    } +
    if (!(edict = PyModule_GetDict(emod))) goto error; +
    if (!(_mysql_MySQLError = +
    _mysql_NewException(dict, edict, "MySQLError"))) +
    goto error; +
    if (!(_mysql_Warning = +
    _mysql_NewException(dict, edict, "Warning"))) +
    goto error; +
    if (!(_mysql_Error = +
    _mysql_NewException(dict, edict, "Error"))) +
    goto error; +
    if (!(_mysql_InterfaceError = +
    _mysql_NewException(dict, edict, "InterfaceError"))) +
    goto error; +
    if (!(_mysql_DatabaseError = +
    _mysql_NewException(dict, edict, "DatabaseError"))) +
    goto error; +
    if (!(_mysql_DataError = +
    _mysql_NewException(dict, edict, "DataError"))) +
    goto error; +
    if (!(_mysql_OperationalError = +
    _mysql_NewException(dict, edict, "OperationalError"))) +
    goto error; +
    if (!(_mysql_IntegrityError = +
    _mysql_NewException(dict, edict, "IntegrityError"))) +
    goto error; +
    if (!(_mysql_InternalError = +
    _mysql_NewException(dict, edict, "InternalError"))) +
    goto error; +
    if (!(_mysql_ProgrammingError = +
    _mysql_NewException(dict, edict, "ProgrammingError"))) +
    goto error; +
    if (!(_mysql_NotSupportedError = +
    _mysql_NewException(dict, edict, "NotSupportedError"))) +
    goto error; +
    if (!(_mysql_NULL = PyBytes_FromString("NULL"))) +
    goto error; +
    if (PyDict_SetItemString(dict, "NULL", _mysql_NULL)) goto error; +
    error: +
    if (emod) Py_DECREF(emod); +
    if (PyErr_Occurred()) { +
    PyErr_SetString(PyExc_ImportError, +
    "_mysql: init failed"); +
    if (module) Py_DECREF(module); +
    module = NULL; +
    } +
    #ifdef IS_PY3K +
    return module; +
    #endif +
    } +
    1. when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL

    2. when Py_InitModule4TraceRefs_64() succeeds

    3. taking False path

    4. taking False path

    5. when PyRun_StringFlags() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    6. when PyUnicodeUCS4_FromString() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    7. when PyDict_SetItemString() succeeds

      taking False path

    8. when PyDict_SetItemString() succeeds

      taking False path

    9. when PyImport_ImportModule() succeeds

      taking False path

    10. taking False path

    11. when _mysql_NewException() succeeds

    12. taking False path

    13. when _mysql_NewException() succeeds

    14. taking False path

    15. when _mysql_NewException() succeeds

    16. taking False path

    17. when _mysql_NewException() succeeds

    18. taking False path

    19. when _mysql_NewException() succeeds

    20. taking False path

    21. when _mysql_NewException() succeeds

    22. taking False path

    23. when _mysql_NewException() succeeds

    24. taking False path

    25. when _mysql_NewException() succeeds

    26. taking False path

    27. when _mysql_NewException() succeeds

    28. taking False path

    29. when _mysql_NewException() succeeds

    30. taking False path

    31. when _mysql_NewException() succeeds

    32. taking False path

    33. when PyString_FromString() succeeds

      taking False path

    34. when PyDict_SetItemString() succeeds

      taking False path

    35. taking True path

      when taking True path

      taking False path

    36. PyErr_Occurred()

      taking False path

    37. returning

      was expecting final ob_refcnt to be N + 0 (for some unknown N)

      but final ob_refcnt is N + 1

      found 9 similar trace(s) to this

  4. ob_refcnt of new ref from (unknown) PyRun_StringFlags is 1 too high

    Report

    4
    DL_EXPORT(void) +
    init_mysql(void) +
    #endif +
    { +
    PyObject *dict, *module, *emod, *edict; +
    +
    utf8conn = mysql_init(NULL); +
    utf8conn->charset = &my_charset_utf8mb4_unicode_ci; +
    +
    #ifdef IS_PY3K +
    module = PyModule_Create(&_mysqlmodule); +
    if (!module) return module; /* this really should never happen */ +
    #else +
    module = Py_InitModule4("_mysql", _mysql_methods, _mysql___doc__, +
    (PyObject *)NULL, PYTHON_API_VERSION); +
    if (!module) return; /* this really should never happen */ +
    #endif +
    #ifdef IS_PY3K +
    Py_TYPE(&_mysql_ConnectionObject_Type) = &PyType_Type; +
    Py_TYPE(&_mysql_ResultObject_Type) = &PyType_Type; +
    #else +
    _mysql_ConnectionObject_Type.ob_type = &PyType_Type; +
    _mysql_ResultObject_Type.ob_type = &PyType_Type; +
    #endif +
    #if PY_VERSION_HEX >= 0x02020000 +
    _mysql_ConnectionObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ResultObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ConnectionObject_Type.tp_new = PyType_GenericNew; +
    _mysql_ResultObject_Type.tp_new = PyType_GenericNew; +
    #ifndef IS_PY3K +
    _mysql_ConnectionObject_Type.tp_free = _PyObject_GC_Del; +
    _mysql_ResultObject_Type.tp_free = _PyObject_GC_Del; +
    #endif +
    #endif +
    +
    if (!(dict = PyModule_GetDict(module))) goto error; +
    if (PyDict_SetItemString(dict, "version_info", +
    PyRun_String(QUOTE(version_info), Py_eval_input, +
    dict, dict))) +
    goto error; +
    if (PyDict_SetItemString(dict, "__version__", +
    PyUnicode_FromString(QUOTE(__version__)))) +
    goto error; +
    if (PyDict_SetItemString(dict, "connection", +
    (PyObject *)&_mysql_ConnectionObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ConnectionObject_Type); +
    if (PyDict_SetItemString(dict, "result", +
    (PyObject *)&_mysql_ResultObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ResultObject_Type); +
    if (!(emod = PyImport_ImportModule("_mysql_exceptions"))) { +
    PyErr_Print(); +
    goto error; +
    } +
    if (!(edict = PyModule_GetDict(emod))) goto error; +
    if (!(_mysql_MySQLError = +
    _mysql_NewException(dict, edict, "MySQLError"))) +
    goto error; +
    if (!(_mysql_Warning = +
    _mysql_NewException(dict, edict, "Warning"))) +
    goto error; +
    if (!(_mysql_Error = +
    _mysql_NewException(dict, edict, "Error"))) +
    goto error; +
    if (!(_mysql_InterfaceError = +
    _mysql_NewException(dict, edict, "InterfaceError"))) +
    goto error; +
    if (!(_mysql_DatabaseError = +
    _mysql_NewException(dict, edict, "DatabaseError"))) +
    goto error; +
    if (!(_mysql_DataError = +
    _mysql_NewException(dict, edict, "DataError"))) +
    goto error; +
    if (!(_mysql_OperationalError = +
    _mysql_NewException(dict, edict, "OperationalError"))) +
    goto error; +
    if (!(_mysql_IntegrityError = +
    _mysql_NewException(dict, edict, "IntegrityError"))) +
    goto error; +
    if (!(_mysql_InternalError = +
    _mysql_NewException(dict, edict, "InternalError"))) +
    goto error; +
    if (!(_mysql_ProgrammingError = +
    _mysql_NewException(dict, edict, "ProgrammingError"))) +
    goto error; +
    if (!(_mysql_NotSupportedError = +
    _mysql_NewException(dict, edict, "NotSupportedError"))) +
    goto error; +
    if (!(_mysql_NULL = PyBytes_FromString("NULL"))) +
    goto error; +
    if (PyDict_SetItemString(dict, "NULL", _mysql_NULL)) goto error; +
    error: +
    if (emod) Py_DECREF(emod); +
    if (PyErr_Occurred()) { +
    PyErr_SetString(PyExc_ImportError, +
    "_mysql: init failed"); +
    if (module) Py_DECREF(module); +
    module = NULL; +
    } +
    #ifdef IS_PY3K +
    return module; +
    #endif +
    } +
    1. when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL

    2. when Py_InitModule4TraceRefs_64() succeeds

    3. taking False path

    4. taking False path

    5. when PyRun_StringFlags() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    6. when PyUnicodeUCS4_FromString() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    7. when PyDict_SetItemString() succeeds

      taking False path

    8. when PyDict_SetItemString() succeeds

      taking False path

    9. when PyImport_ImportModule() succeeds

      taking False path

    10. taking False path

    11. when _mysql_NewException() succeeds

    12. taking False path

    13. when _mysql_NewException() succeeds

    14. taking False path

    15. when _mysql_NewException() succeeds

    16. taking False path

    17. when _mysql_NewException() succeeds

    18. taking False path

    19. when _mysql_NewException() succeeds

    20. taking False path

    21. when _mysql_NewException() succeeds

    22. taking False path

    23. when _mysql_NewException() succeeds

    24. taking False path

    25. when _mysql_NewException() succeeds

    26. taking False path

    27. when _mysql_NewException() succeeds

    28. taking False path

    29. when _mysql_NewException() succeeds

    30. taking False path

    31. when _mysql_NewException() succeeds

    32. taking False path

    33. when PyString_FromString() succeeds

      taking False path

    34. when PyDict_SetItemString() succeeds

      taking False path

    35. taking True path

      when taking True path

      taking False path

    36. PyErr_Occurred()

      taking False path

    37. returning

      was expecting final ob_refcnt to be N + 0 (for some unknown N)

      but final ob_refcnt is N + 1

      found 9 similar trace(s) to this

    38. new ref from (unknown) PyRun_StringFlags allocated at: if (PyDict_SetItemString(dict, "version_info",

  5. ob_refcnt of new ref from (unknown) PyUnicodeUCS4_FromString is 1 too high

    Report

    5
    DL_EXPORT(void) +
    init_mysql(void) +
    #endif +
    { +
    PyObject *dict, *module, *emod, *edict; +
    +
    utf8conn = mysql_init(NULL); +
    utf8conn->charset = &my_charset_utf8mb4_unicode_ci; +
    +
    #ifdef IS_PY3K +
    module = PyModule_Create(&_mysqlmodule); +
    if (!module) return module; /* this really should never happen */ +
    #else +
    module = Py_InitModule4("_mysql", _mysql_methods, _mysql___doc__, +
    (PyObject *)NULL, PYTHON_API_VERSION); +
    if (!module) return; /* this really should never happen */ +
    #endif +
    #ifdef IS_PY3K +
    Py_TYPE(&_mysql_ConnectionObject_Type) = &PyType_Type; +
    Py_TYPE(&_mysql_ResultObject_Type) = &PyType_Type; +
    #else +
    _mysql_ConnectionObject_Type.ob_type = &PyType_Type; +
    _mysql_ResultObject_Type.ob_type = &PyType_Type; +
    #endif +
    #if PY_VERSION_HEX >= 0x02020000 +
    _mysql_ConnectionObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ResultObject_Type.tp_alloc = PyType_GenericAlloc; +
    _mysql_ConnectionObject_Type.tp_new = PyType_GenericNew; +
    _mysql_ResultObject_Type.tp_new = PyType_GenericNew; +
    #ifndef IS_PY3K +
    _mysql_ConnectionObject_Type.tp_free = _PyObject_GC_Del; +
    _mysql_ResultObject_Type.tp_free = _PyObject_GC_Del; +
    #endif +
    #endif +
    +
    if (!(dict = PyModule_GetDict(module))) goto error; +
    if (PyDict_SetItemString(dict, "version_info", +
    PyRun_String(QUOTE(version_info), Py_eval_input, +
    dict, dict))) +
    goto error; +
    if (PyDict_SetItemString(dict, "__version__", +
    PyUnicode_FromString(QUOTE(__version__)))) +
    goto error; +
    if (PyDict_SetItemString(dict, "connection", +
    (PyObject *)&_mysql_ConnectionObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ConnectionObject_Type); +
    if (PyDict_SetItemString(dict, "result", +
    (PyObject *)&_mysql_ResultObject_Type)) +
    goto error; +
    Py_INCREF(&_mysql_ResultObject_Type); +
    if (!(emod = PyImport_ImportModule("_mysql_exceptions"))) { +
    PyErr_Print(); +
    goto error; +
    } +
    if (!(edict = PyModule_GetDict(emod))) goto error; +
    if (!(_mysql_MySQLError = +
    _mysql_NewException(dict, edict, "MySQLError"))) +
    goto error; +
    if (!(_mysql_Warning = +
    _mysql_NewException(dict, edict, "Warning"))) +
    goto error; +
    if (!(_mysql_Error = +
    _mysql_NewException(dict, edict, "Error"))) +
    goto error; +
    if (!(_mysql_InterfaceError = +
    _mysql_NewException(dict, edict, "InterfaceError"))) +
    goto error; +
    if (!(_mysql_DatabaseError = +
    _mysql_NewException(dict, edict, "DatabaseError"))) +
    goto error; +
    if (!(_mysql_DataError = +
    _mysql_NewException(dict, edict, "DataError"))) +
    goto error; +
    if (!(_mysql_OperationalError = +
    _mysql_NewException(dict, edict, "OperationalError"))) +
    goto error; +
    if (!(_mysql_IntegrityError = +
    _mysql_NewException(dict, edict, "IntegrityError"))) +
    goto error; +
    if (!(_mysql_InternalError = +
    _mysql_NewException(dict, edict, "InternalError"))) +
    goto error; +
    if (!(_mysql_ProgrammingError = +
    _mysql_NewException(dict, edict, "ProgrammingError"))) +
    goto error; +
    if (!(_mysql_NotSupportedError = +
    _mysql_NewException(dict, edict, "NotSupportedError"))) +
    goto error; +
    if (!(_mysql_NULL = PyBytes_FromString("NULL"))) +
    goto error; +
    if (PyDict_SetItemString(dict, "NULL", _mysql_NULL)) goto error; +
    error: +
    if (emod) Py_DECREF(emod); +
    if (PyErr_Occurred()) { +
    PyErr_SetString(PyExc_ImportError, +
    "_mysql: init failed"); +
    if (module) Py_DECREF(module); +
    module = NULL; +
    } +
    #ifdef IS_PY3K +
    return module; +
    #endif +
    } +
    1. when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL

    2. when Py_InitModule4TraceRefs_64() succeeds

    3. taking False path

    4. taking False path

    5. when PyRun_StringFlags() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    6. when PyUnicodeUCS4_FromString() succeeds

      when PyDict_SetItemString() succeeds

      taking False path

    7. when PyDict_SetItemString() succeeds

      taking False path

    8. when PyDict_SetItemString() succeeds

      taking False path

    9. when PyImport_ImportModule() succeeds

      taking False path

    10. taking False path

    11. when _mysql_NewException() succeeds

    12. taking False path

    13. when _mysql_NewException() succeeds

    14. taking False path

    15. when _mysql_NewException() succeeds

    16. taking False path

    17. when _mysql_NewException() succeeds

    18. taking False path

    19. when _mysql_NewException() succeeds

    20. taking False path

    21. when _mysql_NewException() succeeds

    22. taking False path

    23. when _mysql_NewException() succeeds

    24. taking False path

    25. when _mysql_NewException() succeeds

    26. taking False path

    27. when _mysql_NewException() succeeds

    28. taking False path

    29. when _mysql_NewException() succeeds

    30. taking False path

    31. when _mysql_NewException() succeeds

    32. taking False path

    33. when PyString_FromString() succeeds

      taking False path

    34. when PyDict_SetItemString() succeeds

      taking False path

    35. taking True path

      when taking True path

      taking False path

    36. PyErr_Occurred()

      taking False path

    37. returning

      was expecting final ob_refcnt to be N + 0 (for some unknown N)

      but final ob_refcnt is N + 1

      found 9 similar trace(s) to this

    38. new ref from (unknown) PyUnicodeUCS4_FromString allocated at: if (PyDict_SetItemString(dict, "__version__",

diff --git a/libcpychecker_html/make_html.py b/libcpychecker_html/make_html.py index ee37c0f1..51e1a9c2 100755 --- a/libcpychecker_html/make_html.py +++ b/libcpychecker_html/make_html.py @@ -27,7 +27,7 @@ from os.path import realpath, dirname, join HERE = dirname(realpath(__file__)) -from . import capi +import capi from lxml.html import ( tostring, fragment_fromstring as parse, builder as E diff --git a/libcpychecker_html/pygments_c.css b/libcpychecker_html/pygments_c.css index 2d53bd80..82d0e5bc 100644 --- a/libcpychecker_html/pygments_c.css +++ b/libcpychecker_html/pygments_c.css @@ -1,4 +1,3 @@ -/* auto-generated by pygments */ .source .hll { background-color: #ffffcc } .source { background: #f8f8f8; } .source .c { color: #408080; font-style: italic } /* Comment */ @@ -14,11 +13,11 @@ .source .gr { color: #FF0000 } /* Generic.Error */ .source .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .source .gi { color: #00A000 } /* Generic.Inserted */ -.source .go { color: #808080 } /* Generic.Output */ +.source .go { color: #888888 } /* Generic.Output */ .source .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ .source .gs { font-weight: bold } /* Generic.Strong */ .source .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.source .gt { color: #0040D0 } /* Generic.Traceback */ +.source .gt { color: #0044DD } /* Generic.Traceback */ .source .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ .source .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ .source .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ @@ -60,4 +59,4 @@ .source .vc { color: #19177C } /* Name.Variable.Class */ .source .vg { color: #19177C } /* Name.Variable.Global */ .source .vi { color: #19177C } /* Name.Variable.Instance */ -.source .il { color: #666666 } /* Literal.Number.Integer.Long */ +.source .il { color: #666666 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/libcpychecker_html/style-noprefix.css b/libcpychecker_html/style-noprefix.css index 19b568b1..424ece50 100644 --- a/libcpychecker_html/style-noprefix.css +++ b/libcpychecker_html/style-noprefix.css @@ -185,7 +185,6 @@ img { .source { height: 100%; font-size: 12px; - padding: 1em; background: white; line-height: 1.33; overflow-x: auto; @@ -194,7 +193,6 @@ img { } .source table { width: 100%; - margin-top: 1em; font-family: monospace; } @@ -224,12 +222,6 @@ img { padding-right:10px; } - -#content table.source { - clear: left; - margin: 2em 0; -} - #content .source td { font-family: monospace; white-space: pre; @@ -315,6 +307,7 @@ var.leak { .flow-line { background: hsl(210, 80%, 60%); background-clip: content-box; + width: 2px; } .flow-empty, .flow-line { padding: 0 5px; diff --git a/libcpychecker_html/style.css b/libcpychecker_html/style.css index 8939fe0b..8401e4df 100755 --- a/libcpychecker_html/style.css +++ b/libcpychecker_html/style.css @@ -254,7 +254,6 @@ img { .source { height: 100%; font-size: 12px; - padding: 1em; background: white; line-height: 1.33; overflow-x: auto; @@ -266,7 +265,6 @@ img { } .source table { width: 100%; - margin-top: 1em; font-family: monospace; } @@ -299,12 +297,6 @@ img { padding-right:10px; } - -#content table.source { - clear: left; - margin: 2em 0; -} - #content .source td { font-family: monospace; white-space: pre; @@ -394,6 +386,7 @@ var.leak { background: hsl(210, 80%, 60%); -webkit-background-clip: content-box; background-clip: content-box; + width: 2px; } .flow-empty, .flow-line { padding: 0 5px; diff --git a/libcpychecker_html/test/example3/_mysql.c b/libcpychecker_html/test/example3/_mysql.c new file mode 100644 index 00000000..f3ce2a41 --- /dev/null +++ b/libcpychecker_html/test/example3/_mysql.c @@ -0,0 +1,3087 @@ +/* +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. Alternatively, you may use the original license +reproduced below. + +Copyright 1999 by Comstar.net, Inc., Atlanta, GA, US. + + All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Comstar.net, Inc. +or COMSTAR not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior permission. + +COMSTAR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, +INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO +EVENT SHALL COMSTAR BE LIABLE FOR ANY SPECIAL, INDIRECT OR +CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF +USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +*/ + + + +// This 2000 lines intentionally left blank. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PyMODINIT_FUNC +PyInit__mysql(void) +#else +DL_EXPORT(void) +init_mysql(void) +#endif +{ + PyObject *dict, *module, *emod, *edict; + + utf8conn = mysql_init(NULL); + utf8conn->charset = &my_charset_utf8mb4_unicode_ci; + +#ifdef IS_PY3K + module = PyModule_Create(&_mysqlmodule); + if (!module) return module; /* this really should never happen */ +#else + module = Py_InitModule4("_mysql", _mysql_methods, _mysql___doc__, + (PyObject *)NULL, PYTHON_API_VERSION); + if (!module) return; /* this really should never happen */ +#endif +#ifdef IS_PY3K + Py_TYPE(&_mysql_ConnectionObject_Type) = &PyType_Type; + Py_TYPE(&_mysql_ResultObject_Type) = &PyType_Type; +#else + _mysql_ConnectionObject_Type.ob_type = &PyType_Type; + _mysql_ResultObject_Type.ob_type = &PyType_Type; +#endif +#if PY_VERSION_HEX >= 0x02020000 + _mysql_ConnectionObject_Type.tp_alloc = PyType_GenericAlloc; + _mysql_ResultObject_Type.tp_alloc = PyType_GenericAlloc; + _mysql_ConnectionObject_Type.tp_new = PyType_GenericNew; + _mysql_ResultObject_Type.tp_new = PyType_GenericNew; +#ifndef IS_PY3K + _mysql_ConnectionObject_Type.tp_free = _PyObject_GC_Del; + _mysql_ResultObject_Type.tp_free = _PyObject_GC_Del; +#endif +#endif + + if (!(dict = PyModule_GetDict(module))) goto error; + if (PyDict_SetItemString(dict, "version_info", + PyRun_String(QUOTE(version_info), Py_eval_input, + dict, dict))) + goto error; + if (PyDict_SetItemString(dict, "__version__", + PyUnicode_FromString(QUOTE(__version__)))) + goto error; + if (PyDict_SetItemString(dict, "connection", + (PyObject *)&_mysql_ConnectionObject_Type)) + goto error; + Py_INCREF(&_mysql_ConnectionObject_Type); + if (PyDict_SetItemString(dict, "result", + (PyObject *)&_mysql_ResultObject_Type)) + goto error; + Py_INCREF(&_mysql_ResultObject_Type); + if (!(emod = PyImport_ImportModule("_mysql_exceptions"))) { + PyErr_Print(); + goto error; + } + if (!(edict = PyModule_GetDict(emod))) goto error; + if (!(_mysql_MySQLError = + _mysql_NewException(dict, edict, "MySQLError"))) + goto error; + if (!(_mysql_Warning = + _mysql_NewException(dict, edict, "Warning"))) + goto error; + if (!(_mysql_Error = + _mysql_NewException(dict, edict, "Error"))) + goto error; + if (!(_mysql_InterfaceError = + _mysql_NewException(dict, edict, "InterfaceError"))) + goto error; + if (!(_mysql_DatabaseError = + _mysql_NewException(dict, edict, "DatabaseError"))) + goto error; + if (!(_mysql_DataError = + _mysql_NewException(dict, edict, "DataError"))) + goto error; + if (!(_mysql_OperationalError = + _mysql_NewException(dict, edict, "OperationalError"))) + goto error; + if (!(_mysql_IntegrityError = + _mysql_NewException(dict, edict, "IntegrityError"))) + goto error; + if (!(_mysql_InternalError = + _mysql_NewException(dict, edict, "InternalError"))) + goto error; + if (!(_mysql_ProgrammingError = + _mysql_NewException(dict, edict, "ProgrammingError"))) + goto error; + if (!(_mysql_NotSupportedError = + _mysql_NewException(dict, edict, "NotSupportedError"))) + goto error; + if (!(_mysql_NULL = PyBytes_FromString("NULL"))) + goto error; + if (PyDict_SetItemString(dict, "NULL", _mysql_NULL)) goto error; + error: + if (emod) Py_DECREF(emod); + if (PyErr_Occurred()) { + PyErr_SetString(PyExc_ImportError, + "_mysql: init failed"); + if (module) Py_DECREF(module); + module = NULL; + } +#ifdef IS_PY3K + return module; +#endif +} + + +// vim:noet:ts=4: diff --git a/libcpychecker_html/test/example3/_mysql.c.init_mysql.json b/libcpychecker_html/test/example3/_mysql.c.init_mysql.json new file mode 100644 index 00000000..54542833 --- /dev/null +++ b/libcpychecker_html/test/example3/_mysql.c.init_mysql.json @@ -0,0 +1,835136 @@ +{ + "filename": "_mysql.c", + "function": { + "lines": [ + 2981, + 3085 + ], + "name": "init_mysql" + }, + "reports": [ + { + "message": "ob_refcnt of '*module' is 1 too high", + "notes": [ + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "was expecting final ob_refcnt to be N + 0 (for some unknown N)" + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "but final ob_refcnt is N + 1" + }, + { + "location": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ], + "message": "new ref from (unknown) Py_InitModule4TraceRefs_64 allocated at: \tmodule = Py_InitModule4(\"_mysql\", _mysql_methods, _mysql___doc__," + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "found 1 similar trace(s) to this" + } + ], + "severity": "warning", + "states": [ + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 14, + "line": 2987 + }, + { + "column": 14, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 13, + "line": 2988 + }, + { + "column": 13, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": "when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ], + "message": "when Py_InitModule4TraceRefs_64() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 2996 + }, + { + "column": 5, + "line": 2996 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyRun_StringFlags() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3017 + }, + { + "column": 5, + "line": 3017 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyUnicodeUCS4_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3021 + }, + { + "column": 5, + "line": 3021 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3024 + }, + { + "column": 5, + "line": 3024 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3028 + }, + { + "column": 5, + "line": 3028 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "when PyImport_ImportModule() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3037 + }, + { + "column": 5, + "line": 3037 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3040 + }, + { + "column": 5, + "line": 3040 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3043 + }, + { + "column": 5, + "line": 3043 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3046 + }, + { + "column": 5, + "line": 3046 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3049 + }, + { + "column": 5, + "line": 3049 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3052 + }, + { + "column": 5, + "line": 3052 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3055 + }, + { + "column": 5, + "line": 3055 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3058 + }, + { + "column": 5, + "line": 3058 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3061 + }, + { + "column": 5, + "line": 3061 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3064 + }, + { + "column": 5, + "line": 3064 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3067 + }, + { + "column": 5, + "line": 3067 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ], + "message": "when PyString_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3070 + }, + { + "column": 5, + "line": 3070 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3072 + }, + { + "column": 5, + "line": 3072 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 0, + "line": 0 + }, + { + "column": 0, + "line": 0 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3074 + }, + { + "column": 5, + "line": 3074 + } + ], + "message": "taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "when taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3075 + }, + { + "column": 20, + "line": 3075 + } + ], + "message": "PyErr_Occurred()", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3075 + }, + { + "column": 5, + "line": 3075 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "returning", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + } + ] + }, + { + "message": "ob_refcnt of '*_mysql_ConnectionObject_Type.355' is 1 too high", + "notes": [ + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "was expecting final ob_refcnt to be N + 0 (for some unknown N)" + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "but final ob_refcnt is N + 1" + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "found 9 similar trace(s) to this" + } + ], + "severity": "warning", + "states": [ + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 14, + "line": 2987 + }, + { + "column": 14, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 13, + "line": 2988 + }, + { + "column": 13, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": "when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ], + "message": "when Py_InitModule4TraceRefs_64() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 2996 + }, + { + "column": 5, + "line": 2996 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyRun_StringFlags() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3017 + }, + { + "column": 5, + "line": 3017 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyUnicodeUCS4_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3021 + }, + { + "column": 5, + "line": 3021 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3024 + }, + { + "column": 5, + "line": 3024 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3028 + }, + { + "column": 5, + "line": 3028 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "when PyImport_ImportModule() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3037 + }, + { + "column": 5, + "line": 3037 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3040 + }, + { + "column": 5, + "line": 3040 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3043 + }, + { + "column": 5, + "line": 3043 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3046 + }, + { + "column": 5, + "line": 3046 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3049 + }, + { + "column": 5, + "line": 3049 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3052 + }, + { + "column": 5, + "line": 3052 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3055 + }, + { + "column": 5, + "line": 3055 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3058 + }, + { + "column": 5, + "line": 3058 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3061 + }, + { + "column": 5, + "line": 3061 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3064 + }, + { + "column": 5, + "line": 3064 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3067 + }, + { + "column": 5, + "line": 3067 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ], + "message": "when PyString_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3070 + }, + { + "column": 5, + "line": 3070 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3072 + }, + { + "column": 5, + "line": 3072 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 0, + "line": 0 + }, + { + "column": 0, + "line": 0 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3074 + }, + { + "column": 5, + "line": 3074 + } + ], + "message": "taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "when taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3075 + }, + { + "column": 20, + "line": 3075 + } + ], + "message": "PyErr_Occurred()", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3075 + }, + { + "column": 5, + "line": 3075 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "returning", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + } + ] + }, + { + "message": "ob_refcnt of '*_mysql_ResultObject_Type.358' is 1 too high", + "notes": [ + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "was expecting final ob_refcnt to be N + 0 (for some unknown N)" + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "but final ob_refcnt is N + 1" + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "found 9 similar trace(s) to this" + } + ], + "severity": "warning", + "states": [ + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 14, + "line": 2987 + }, + { + "column": 14, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 13, + "line": 2988 + }, + { + "column": 13, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": "when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ], + "message": "when Py_InitModule4TraceRefs_64() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 2996 + }, + { + "column": 5, + "line": 2996 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyRun_StringFlags() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3017 + }, + { + "column": 5, + "line": 3017 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyUnicodeUCS4_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3021 + }, + { + "column": 5, + "line": 3021 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3024 + }, + { + "column": 5, + "line": 3024 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3028 + }, + { + "column": 5, + "line": 3028 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "when PyImport_ImportModule() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3037 + }, + { + "column": 5, + "line": 3037 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3040 + }, + { + "column": 5, + "line": 3040 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3043 + }, + { + "column": 5, + "line": 3043 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3046 + }, + { + "column": 5, + "line": 3046 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3049 + }, + { + "column": 5, + "line": 3049 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3052 + }, + { + "column": 5, + "line": 3052 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3055 + }, + { + "column": 5, + "line": 3055 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3058 + }, + { + "column": 5, + "line": 3058 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3061 + }, + { + "column": 5, + "line": 3061 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3064 + }, + { + "column": 5, + "line": 3064 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3067 + }, + { + "column": 5, + "line": 3067 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ], + "message": "when PyString_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3070 + }, + { + "column": 5, + "line": 3070 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3072 + }, + { + "column": 5, + "line": 3072 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 0, + "line": 0 + }, + { + "column": 0, + "line": 0 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3074 + }, + { + "column": 5, + "line": 3074 + } + ], + "message": "taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "when taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3075 + }, + { + "column": 20, + "line": 3075 + } + ], + "message": "PyErr_Occurred()", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3075 + }, + { + "column": 5, + "line": 3075 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "returning", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + } + ] + }, + { + "message": "ob_refcnt of new ref from (unknown) PyRun_StringFlags is 1 too high", + "notes": [ + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "was expecting final ob_refcnt to be N + 0 (for some unknown N)" + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "but final ob_refcnt is N + 1" + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "new ref from (unknown) PyRun_StringFlags allocated at: \tif (PyDict_SetItemString(dict, \"version_info\"," + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "found 9 similar trace(s) to this" + } + ], + "severity": "warning", + "states": [ + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 14, + "line": 2987 + }, + { + "column": 14, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 13, + "line": 2988 + }, + { + "column": 13, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": "when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ], + "message": "when Py_InitModule4TraceRefs_64() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 2996 + }, + { + "column": 5, + "line": 2996 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyRun_StringFlags() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3017 + }, + { + "column": 5, + "line": 3017 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyUnicodeUCS4_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3021 + }, + { + "column": 5, + "line": 3021 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3024 + }, + { + "column": 5, + "line": 3024 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3028 + }, + { + "column": 5, + "line": 3028 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "when PyImport_ImportModule() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3037 + }, + { + "column": 5, + "line": 3037 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3040 + }, + { + "column": 5, + "line": 3040 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3043 + }, + { + "column": 5, + "line": 3043 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3046 + }, + { + "column": 5, + "line": 3046 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3049 + }, + { + "column": 5, + "line": 3049 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3052 + }, + { + "column": 5, + "line": 3052 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3055 + }, + { + "column": 5, + "line": 3055 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3058 + }, + { + "column": 5, + "line": 3058 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3061 + }, + { + "column": 5, + "line": 3061 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3064 + }, + { + "column": 5, + "line": 3064 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3067 + }, + { + "column": 5, + "line": 3067 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ], + "message": "when PyString_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3070 + }, + { + "column": 5, + "line": 3070 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3072 + }, + { + "column": 5, + "line": 3072 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 0, + "line": 0 + }, + { + "column": 0, + "line": 0 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3074 + }, + { + "column": 5, + "line": 3074 + } + ], + "message": "taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "when taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3075 + }, + { + "column": 20, + "line": 3075 + } + ], + "message": "PyErr_Occurred()", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3075 + }, + { + "column": 5, + "line": 3075 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "returning", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + } + ] + }, + { + "message": "ob_refcnt of new ref from (unknown) PyUnicodeUCS4_FromString is 1 too high", + "notes": [ + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "was expecting final ob_refcnt to be N + 0 (for some unknown N)" + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "but final ob_refcnt is N + 1" + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "new ref from (unknown) PyUnicodeUCS4_FromString allocated at: \tif (PyDict_SetItemString(dict, \"__version__\"," + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "found 9 similar trace(s) to this" + } + ], + "severity": "warning", + "states": [ + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 14, + "line": 2987 + }, + { + "column": 14, + "line": 2987 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 13, + "line": 2988 + }, + { + "column": 13, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": "when treating unknown struct MYSQL * from _mysql.c:2987 as non-NULL", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 2987 + }, + { + "column": 26, + "line": 2987 + } + ] + } + } + }, + { + "location": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ], + "message": "when Py_InitModule4TraceRefs_64() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 2996 + }, + { + "column": 5, + "line": 2996 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyRun_StringFlags() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3017 + }, + { + "column": 5, + "line": 3017 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyUnicodeUCS4_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3021 + }, + { + "column": 5, + "line": 3021 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3024 + }, + { + "column": 5, + "line": 3024 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3028 + }, + { + "column": 5, + "line": 3028 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "when PyImport_ImportModule() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3037 + }, + { + "column": 26, + "line": 3037 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3037 + }, + { + "column": 5, + "line": 3037 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_MySQLError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 23, + "line": 3040 + }, + { + "column": 23, + "line": 3040 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3040 + }, + { + "column": 5, + "line": 3040 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Warning" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 21, + "line": 3043 + }, + { + "column": 21, + "line": 3043 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3043 + }, + { + "column": 5, + "line": 3043 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_Error" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3046 + }, + { + "column": 30, + "line": 3046 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3046 + }, + { + "column": 5, + "line": 3046 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InterfaceError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3049 + }, + { + "column": 29, + "line": 3049 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3049 + }, + { + "column": 5, + "line": 3049 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DatabaseError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 25, + "line": 3052 + }, + { + "column": 25, + "line": 3052 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3052 + }, + { + "column": 5, + "line": 3052 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_DataError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3055 + }, + { + "column": 32, + "line": 3055 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3055 + }, + { + "column": 5, + "line": 3055 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_OperationalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 30, + "line": 3058 + }, + { + "column": 30, + "line": 3058 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3058 + }, + { + "column": 5, + "line": 3058 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_IntegrityError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 29, + "line": 3061 + }, + { + "column": 29, + "line": 3061 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3061 + }, + { + "column": 5, + "line": 3061 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_InternalError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 32, + "line": 3064 + }, + { + "column": 32, + "line": 3064 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3064 + }, + { + "column": 5, + "line": 3064 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ], + "message": "when _mysql_NewException() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_ProgrammingError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 33, + "line": 3067 + }, + { + "column": 33, + "line": 3067 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3067 + }, + { + "column": 5, + "line": 3067 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ], + "message": "when PyString_FromString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3070 + }, + { + "column": 20, + "line": 3070 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3070 + }, + { + "column": 5, + "line": 3070 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ], + "message": "when PyDict_SetItemString() succeeds", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3072 + }, + { + "column": 5, + "line": 3072 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 0, + "line": 0 + }, + { + "column": 0, + "line": 0 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3074 + }, + { + "column": 5, + "line": 3074 + } + ], + "message": "taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "when taking True path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": "", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 20, + "line": 3075 + }, + { + "column": 20, + "line": 3075 + } + ], + "message": "PyErr_Occurred()", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 5, + "line": 3075 + }, + { + "column": 5, + "line": 3075 + } + ], + "message": "taking False path", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": null, + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": "returning", + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + }, + { + "location": [ + { + "column": 15, + "line": 2996 + }, + { + "column": 15, + "line": 2996 + } + ], + "message": null, + "variables": { + "": { + "gcctype": "void", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15266": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15267": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "D.15270": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15271": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "D.15274": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15280": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3024 + }, + { + "column": 26, + "line": 3024 + } + ] + }, + "D.15281": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "D.15282": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15288": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3028 + }, + { + "column": 26, + "line": 3028 + } + ] + }, + "D.15289": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "D.15343": { + "gcctype": "int", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "D.15350": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "D.15351": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15352": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15355": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "D.15359": { + "gcctype": "struct PyObject *", + "kind": "ConcreteValue", + "value": 0, + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15367": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15368": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15369": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "D.15372": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyExc_ImportError.386": { + "gcctype": "struct PyObject *", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "PyModuleObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "PyModuleObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyModule_Type", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyModule_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "PyStringObject.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NULL" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3072 + }, + { + "column": 26, + "line": 3072 + } + ] + }, + "PyStringObject.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyString_Type", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyString_Type.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "PyTypeObject for borrowed reference returned by PyModule_GetDict().tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyRun_StringFlags.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "PyTypeObject for new ref from (unknown) _mysql_NewException.tp_dealloc": { + "gcctype": "void (*destructor) (struct PyObject *)", + "kind": "GenericTpDealloc", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_Py_RefTotal": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.353": { + "gcctype": "Py_ssize_t", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775808, + "value_comes_from": [ + { + "column": 24, + "line": 705 + }, + { + "column": 24, + "line": 705 + } + ] + }, + "_Py_RefTotal.354": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.356": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_Py_RefTotal.357": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.384": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775807, + "minvalue": -9223372036854775806, + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_Py_RefTotal.385": { + "gcctype": "long int", + "kind": "WithinRange", + "maxvalue": 9223372036854775806, + "minvalue": -9223372036854775807, + "value_comes_from": [ + { + "column": 12, + "line": 3074 + }, + { + "column": 12, + "line": 3074 + } + ] + }, + "_Py_RefTotal.387": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_Py_RefTotal.388": { + "gcctype": "long int", + "kind": "UninitializedData", + "value_comes_from": [ + { + "column": 1, + "line": 2984 + }, + { + "column": 1, + "line": 2984 + } + ] + }, + "_mysql_ConnectionObject_Type.355": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ConnectionObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3027 + }, + { + "column": 2, + "line": 3027 + } + ] + }, + "_mysql_ConnectionObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 39, + "line": 3002 + }, + { + "column": 39, + "line": 3002 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 40, + "line": 3006 + }, + { + "column": 40, + "line": 3006 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 39, + "line": 3011 + }, + { + "column": 39, + "line": 3011 + } + ] + }, + "_mysql_ConnectionObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 38, + "line": 3008 + }, + { + "column": 38, + "line": 3008 + } + ] + }, + "_mysql_DataError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.369": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DataError.370": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3053 + }, + { + "column": 27, + "line": 3053 + } + ] + }, + "_mysql_DatabaseError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.367": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_DatabaseError.368": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3050 + }, + { + "column": 27, + "line": 3050 + } + ] + }, + "_mysql_Error": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.363": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_Error.364": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3044 + }, + { + "column": 27, + "line": 3044 + } + ] + }, + "_mysql_IntegrityError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.373": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_IntegrityError.374": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3059 + }, + { + "column": 27, + "line": 3059 + } + ] + }, + "_mysql_InterfaceError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.365": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InterfaceError.366": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3047 + }, + { + "column": 27, + "line": 3047 + } + ] + }, + "_mysql_InternalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.375": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_InternalError.376": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3062 + }, + { + "column": 27, + "line": 3062 + } + ] + }, + "_mysql_MySQLError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.359": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_MySQLError.360": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3038 + }, + { + "column": 27, + "line": 3038 + } + ] + }, + "_mysql_NULL": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.381": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.382": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NULL.383": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyStringObject", + "value_comes_from": [ + { + "column": 40, + "line": 3070 + }, + { + "column": 40, + "line": 3070 + } + ] + }, + "_mysql_NotSupportedError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.379": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_NotSupportedError.380": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "_mysql_OperationalError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.371": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_OperationalError.372": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3056 + }, + { + "column": 27, + "line": 3056 + } + ] + }, + "_mysql_ProgrammingError": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.377": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ProgrammingError.378": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3065 + }, + { + "column": 27, + "line": 3065 + } + ] + }, + "_mysql_ResultObject_Type.358": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "_mysql_ResultObject_Type", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 2, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 2, + "line": 3031 + }, + { + "column": 2, + "line": 3031 + } + ] + }, + "_mysql_ResultObject_Type.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyType_Type", + "value_comes_from": [ + { + "column": 35, + "line": 3003 + }, + { + "column": 35, + "line": 3003 + } + ] + }, + "_mysql_ResultObject_Type.tp_alloc": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, Py_ssize_t)", + "kind": "PointerToRegion", + "target": "PyType_GenericAlloc", + "value_comes_from": [ + { + "column": 36, + "line": 3007 + }, + { + "column": 36, + "line": 3007 + } + ] + }, + "_mysql_ResultObject_Type.tp_free": { + "gcctype": "void (*) (void *)", + "kind": "PointerToRegion", + "target": "PyObject_GC_Del", + "value_comes_from": [ + { + "column": 35, + "line": 3012 + }, + { + "column": 35, + "line": 3012 + } + ] + }, + "_mysql_ResultObject_Type.tp_new": { + "gcctype": "struct PyObject * (*) (struct PyTypeObject *, struct PyObject *, struct PyObject *)", + "kind": "PointerToRegion", + "target": "PyType_GenericNew", + "value_comes_from": [ + { + "column": 34, + "line": 3009 + }, + { + "column": 34, + "line": 3009 + } + ] + }, + "_mysql_Warning": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.361": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql_Warning.362": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3041 + }, + { + "column": 27, + "line": 3041 + } + ] + }, + "_mysql___doc__[0]": { + "gcctype": "char[517] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "_mysql_methods[0]": { + "gcctype": "struct PyMethodDef[12] *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "borrowed reference returned by PyModule_GetDict()": { + "gcctype": "struct PyObject *", + "kind": "UnknownValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 0 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "borrowed reference returned by PyModule_GetDict().ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "dict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3016 + }, + { + "column": 5, + "line": 3016 + } + ] + }, + "edict": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "borrowed reference returned by PyModule_GetDict()", + "value_comes_from": [ + { + "column": 5, + "line": 3036 + }, + { + "column": 5, + "line": 3036 + } + ] + }, + "emod": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "PyModuleObject", + "value_comes_from": [ + { + "column": 5, + "line": 3032 + }, + { + "column": 5, + "line": 3032 + } + ] + }, + "heap-region-137.charset": { + "gcctype": "struct CHARSET_INFO *", + "kind": "PointerToRegion", + "target": "my_charset_utf8mb4_unicode_ci", + "value_comes_from": [ + { + "column": 23, + "line": 2988 + }, + { + "column": 23, + "line": 2988 + } + ] + }, + "module": { + "gcctype": "struct PyObject *", + "kind": "PointerToRegion", + "target": "new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyRun_StringFlags.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyRun_StringFlags", + "value_comes_from": [ + { + "column": 26, + "line": 3017 + }, + { + "column": 26, + "line": 3017 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 1, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) PyUnicodeUCS4_FromString.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) PyUnicodeUCS4_FromString", + "value_comes_from": [ + { + "column": 26, + "line": 3021 + }, + { + "column": 26, + "line": 3021 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) Py_InitModule4TraceRefs_64.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) Py_InitModule4TraceRefs_64", + "value_comes_from": [ + { + "column": 9, + "line": 2994 + }, + { + "column": 9, + "line": 2994 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_refcnt": { + "actual_ob_refcnt": { + "lower_bound_of_other_refs": 0, + "refs_we_own": 1 + }, + "expected_ob_refcnt": { + "pointers_to_this": [ + "_mysql_NotSupportedError" + ] + }, + "gcctype": "Py_ssize_t", + "kind": "RefcountValue", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "new ref from (unknown) _mysql_NewException.ob_type": { + "gcctype": "struct PyTypeObject *", + "kind": "PointerToRegion", + "target": "PyTypeObject for new ref from (unknown) _mysql_NewException", + "value_comes_from": [ + { + "column": 27, + "line": 3068 + }, + { + "column": 27, + "line": 3068 + } + ] + }, + "utf8conn": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.351": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + }, + "utf8conn.352": { + "gcctype": "struct MYSQL *", + "kind": "PointerToRegion", + "target": "heap-region-137", + "value_comes_from": null + } + } + } + ] + } + ] +} \ No newline at end of file